home *** CD-ROM | disk | FTP | other *** search
- // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
- // see COPYRIGHT for reuse legalities
- //
-
- #import <appkit/appkit.h>
-
- #import "RIBQuadric.h"
-
-
- @interface RIBSphere : RIBQuadric
- {
- RtFloat radius, zMin, zMax;
- }
-
- - setRadius:(RtFloat)newRadius
- zMin:(RtFloat)newZMin zMax:(RtFloat)newZMax
- thetaMax:(RtFloat)newThetaMax
- n:(int)newN tokens:(RtToken *)newTokens parms:(RtPointer *)newParms archiveVector:(char **)newArchiveVector
- printfTypeVector:(int *)newPrintfTypeVector printfNVector:(int *)newPrintfNVector;
- - setRadius:(RtFloat)newRadius;
- - setZMin:(RtFloat)newZMin;
- - setZMax:(RtFloat)newZMax;
- - (RtFloat)radius;
- - (RtFloat)zMin;
- - (RtFloat)zMax;
-
- @end
-